home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zmath.c < prev    next >
C/C++ Source or Header  |  1997-05-06  |  6KB  |  252 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zmath.c */
  20. /* Mathematical operators */
  21. #include "math_.h"
  22. #include "ghost.h"
  23. #include "gxfarith.h"
  24. #include "errors.h"
  25. #include "oper.h"
  26. #include "store.h"
  27.  
  28. /*
  29.  * Define the current state of random number generator.  We have to
  30.  * implement this ourselves because the Unix rand doesn't provide anything
  31.  * equivalent to rrand.  Note that the value always lies in the range
  32.  * [0..0x7ffffffe], even if longs are longer than 32 bits.
  33.  *
  34.  * The state must be public so that context switching can save and
  35.  * restore it.  (Even though the Red Book doesn't mention this,
  36.  * we verified with Adobe that this is the case.)
  37.  */
  38. long zrand_state;
  39.  
  40. /* Initialize the random number generator. */
  41. void
  42. zrand_state_init(long *pstate)
  43. {    *pstate = 1;
  44. }
  45. private void
  46. zmath_init(void)
  47. {    zrand_state_init(&zrand_state);
  48. }
  49.  
  50. /****** NOTE: none of these operators currently ******/
  51. /****** check for floating over- or underflow.    ******/
  52.  
  53. /* <num> sqrt <real> */
  54. private int
  55. zsqrt(register os_ptr op)
  56. {    float num;
  57.     int code = num_params(op, 1, &num);
  58.     if ( code < 0 )
  59.       return code;
  60.     if ( num < 0.0 )
  61.       return_error(e_rangecheck);
  62.     make_real(op, sqrt(num));
  63.     return 0;
  64. }
  65.  
  66. /* <num> arccos <real> */
  67. private int
  68. zarccos(register os_ptr op)
  69. {    float num, result;
  70.     int code = num_params(op, 1, &num);
  71.     if ( code < 0 )
  72.       return code;
  73.     result = acos(num) * radians_to_degrees;
  74.     make_real(op, result);
  75.     return 0;
  76. }
  77.  
  78. /* <num> arcsin <real> */
  79. private int
  80. zarcsin(register os_ptr op)
  81. {    float num, result;
  82.     int code = num_params(op, 1, &num);
  83.     if ( code < 0 )
  84.       return code;
  85.     result = asin(num) * radians_to_degrees;
  86.     make_real(op, result);
  87.     return 0;
  88. }
  89.  
  90. /* <num> <denom> atan <real> */
  91. private int
  92. zatan(register os_ptr op)
  93. {    float args[2];
  94.     float result;
  95.     int code = num_params(op, 2, args);
  96.     if ( code < 0 ) return code;
  97.     if ( args[0] == 0 )        /* on X-axis, special case */
  98.        {    if ( args[1] == 0 )
  99.           return_error(e_undefinedresult);
  100.         result = (args[1] < 0 ? 180 : 0);
  101.        }
  102.     else
  103.        {    result = atan2(args[0], args[1]) * radians_to_degrees;
  104.         if ( result < 0 )
  105.           result += 360;
  106.        }
  107.     make_real(op - 1, result);
  108.     pop(1);
  109.     return 0;
  110. }
  111.  
  112. /* <num> cos <real> */
  113. private int
  114. zcos(register os_ptr op)
  115. {    float angle;
  116.     int code = num_params(op, 1, &angle);
  117.     if ( code < 0 )
  118.       return code;
  119.     make_real(op, gs_cos_degrees(angle));
  120.     return 0;
  121. }
  122.  
  123. /* <num> sin <real> */
  124. private int
  125. zsin(register os_ptr op)
  126. {    float angle;
  127.     int code = num_params(op, 1, &angle);
  128.     if ( code < 0 )
  129.       return code;
  130.     make_real(op, gs_sin_degrees(angle));
  131.     return 0;
  132. }
  133.  
  134. /* <base> <exponent> exp <real> */
  135. private int
  136. zexp(register os_ptr op)
  137. {    float args[2];
  138.     float result;
  139.     double ipart;
  140.     int code = num_params(op, 2, args);
  141.     if ( code < 0 ) return code;
  142.     if ( args[0] == 0.0 && args[1] == 0.0 )
  143.       return_error(e_undefinedresult);
  144.     if ( args[0] < 0.0 && modf(args[1], &ipart) != 0.0 )
  145.       return_error(e_undefinedresult);
  146.     result = pow(args[0], args[1]);
  147.     make_real(op - 1, result);
  148.     pop(1);
  149.     return 0;
  150. }
  151.  
  152. /* <posnum> ln <real> */
  153. private int
  154. zln(register os_ptr op)
  155. {    float num;
  156.     int code = num_params(op, 1, &num);
  157.     if ( code < 0 )
  158.       return code;
  159.     if ( num <= 0.0 )
  160.       return_error(e_rangecheck);
  161.     make_real(op, log(num));
  162.     return 0;
  163. }
  164.  
  165. /* <posnum> log <real> */
  166. private int
  167. zlog(register os_ptr op)
  168. {    float num;
  169.     int code = num_params(op, 1, &num);
  170.     if ( code < 0 )
  171.       return code;
  172.     if ( num <= 0.0 )
  173.       return_error(e_rangecheck);
  174.     make_real(op, log10(num));
  175.     return 0;
  176. }
  177.  
  178. /* - rand <int> */
  179. private int
  180. zrand(register os_ptr op)
  181. {    /*
  182.      * We use an algorithm from CACM 31 no. 10, pp. 1192-1201,
  183.      * October 1988.  According to a posting by Ed Taft on
  184.      * comp.lang.postscript, Level 2 (Adobe) PostScript interpreters
  185.      * use this algorithm too:
  186.      *    x[n+1] = (16807 * x[n]) mod (2^31 - 1)
  187.      */
  188. #define A 16807
  189. #define M 0x7fffffff
  190. #define Q 127773            /* M / A */
  191. #define R 2836                /* M % A */
  192.     zrand_state = A * (zrand_state % Q) - R * (zrand_state / Q);
  193.     /* Note that zrand_state cannot be 0 here. */
  194.     if ( zrand_state <= 0 )
  195.       zrand_state += M;
  196. #undef A
  197. #undef M
  198. #undef Q
  199. #undef R
  200.     push(1);
  201.     make_int(op, zrand_state);
  202.     return 0;
  203. }
  204.  
  205. /* <int> srand - */
  206. private int
  207. zsrand(register os_ptr op)
  208. {    long state;
  209.     check_type(*op, t_integer);
  210.     state = op->value.intval;
  211. #if arch_sizeof_long > 4
  212.     /* Trim the state back to 32 bits. */
  213.     state = (int)state;
  214. #endif
  215.     /*
  216.      * The following somewhat bizarre adjustments are according to
  217.      * public information from Adobe describing their implementation.
  218.      */
  219.     if ( state < 1 )
  220.       state = -(state % 0x7ffffffe) + 1;
  221.     else if ( state > 0x7ffffffe )
  222.       state = 0x7ffffffe;
  223.     zrand_state = state;
  224.     pop(1);
  225.     return 0;
  226. }
  227.  
  228. /* - rrand <int> */
  229. private int
  230. zrrand(register os_ptr op)
  231. {    push(1);
  232.     make_int(op, zrand_state);
  233.     return 0;
  234. }
  235.  
  236. /* ------ Initialization procedure ------ */
  237.  
  238. BEGIN_OP_DEFS(zmath_op_defs) {
  239.     {"1arccos", zarccos},        /* extension */
  240.     {"1arcsin", zarcsin},        /* extension */
  241.     {"2atan", zatan},
  242.     {"1cos", zcos},
  243.     {"2exp", zexp},
  244.     {"1ln", zln},
  245.     {"1log", zlog},
  246.     {"0rand", zrand},
  247.     {"0rrand", zrrand},
  248.     {"1sin", zsin},
  249.     {"1sqrt", zsqrt},
  250.     {"1srand", zsrand},
  251. END_OP_DEFS(zmath_init) }
  252.